Proactive Hardware Monitoring Installation Instructions
Minimum Version
This DEX Pack requires SysTrack version 10.1 or higher.
Notes
-
After this DEX Pack is installed, it may take up to 24 hours for data to appear.
-
If you update or reinstall this DEX Pack, you must reassign any Views created below to the SF_Proactive Hardware Monitoring Role.
-
This DEX Pack only tracks data from physical systems. Data from Virtual Machines will not be tracked.
Import Kit
To use this DEX Pack, the corresponding Kit must be imported to SysTrack.
If you have already imported the DEX Pack directly from the Kits page, the Import Kit step is complete. You may move on to the next step.
If you are viewing this DEX Pack in the Customer Gateway, follow these steps to import this DEX Pack Kit:
-
On the DEX Pack page, download the DEX Pack ZIP file
-
In SysTrack, open Kits
-
Under Local, click Select Kit File
-
Select the DEX Pack ZIP File
Battery Health View
Battery Health data requires you to make a View for the SF_Proactive Hardware Monitoring Role.
To create the new View:
-
Navigate to Configure > Views
-
Click the padlock icon in the upper-right to enable editing
-
Click the plus icon to add a new View
-
Fill in the Settings as follows:
-
View Name: SF_BATTDAILY
-
Expires in: 6 Months
-
When Expired: Append Data
-
Do NOT check “When overdue by 1 day(s)”
-
Set the Refresh drop-downs to Weekly, Inside, 24x7, and “Every 1 week(s)”
-
Copy this SQL query, and paste it into the box under SQL Selection > Generic
-
Click Test SQL. A Test Success message should appear. If the test is not successful, the query may have been copied incorrectly
-
-
Click Create View at the top-right
To assign the new View:
-
Navigate to Configure > Roles
-
Use the drop-down at the top to select the SF_Proactive Hardware Monitoring Role
-
Click Views, then check the box next to SF_BATTDAILY
-
Click Save Changes at the top-right
Some forms of Battery Health data will not begin to be tracked until this View is assigned. It may take several weeks before some forms of Battery Health data fully populate this DEX Pack.
Copy SF_BATTDAILY
SELECT
T0.WGUID,
GETUTCDATE() AS VWTIME,
S0.STRVALUE AS DEVICE_NAME,
(T0.FULL_CHARGE_CAPACITY / CAST(T0.DESIGN_CAPACITY AS FLOAT)) * 100 AS BATTERY_HEALTH,
T1.MAX_BATTERY_LVL,
T1.AVG_BATTERY_LVL,
T1.MIN_BATTERY_LVL,
T1.STDEV_BATTERY_LVL
FROM SABATTERY AS T0
,SASTR AS S0
,(
SELECT
MAX(BATTERY_LEVEL) * 100.0 AS MAX_BATTERY_LVL,
AVG(BATTERY_LEVEL) * 100.0 AS AVG_BATTERY_LVL,
MIN(BATTERY_LEVEL) * 100.0 AS MIN_BATTERY_LVL,
STDEV(BATTERY_LEVEL) * 100.0 AS STDEV_BATTERY_LVL
FROM SASYS
WHERE
WTYPE = 1
AND WTIME > <LASTREFRESHTIME>
) AS T1
WHERE
ISNULL(T0.DESIGN_CAPACITY,0) > 0
AND ISNULL(T0.FULL_CHARGE_CAPACITY,0) > 0
AND T0.DEVICEID = S0.STRINGID
Boot View
Boot data requires you to make a View for the SF_Proactive Hardware Monitoring Role.
To create the new View:
-
Navigate to Configure > Views
-
Click the padlock icon in the upper-right to enable editing
-
Click the plus icon to add a new View
-
Fill in the Settings as follows:
-
View Name: SF_BootCount
-
Existing Category: Customization
-
Description: System View for Proactive Hardware Monitoring DEX Pack
-
Expires in: 30 Days
-
When Expired: Overwrite Data
-
Check “When overdue by 1 day(s)”
-
Set the Refresh drop-downs to Daily, Inside, 24x7, and “Every Day”
-
Copy this SQL query, and paste it into the box under SQL Selection > Generic
-
Click Test SQL. A Test Success message should appear. If the test is not successful, the query may have been copied incorrectly
-
-
Click Create View at the top-right
To assign the new View:
-
Navigate to Configure > Roles
-
Use the drop-down at the top to select the SF_Proactive Hardware Monitoring Role
-
Click Views, then check the box next to SF_BootCount
-
Click Save Changes at the top-right
Copy SF_BOOTCOUNT
SELECT
WGUID
,GETUTCDATE() AS VWTIME
,COUNT(*) AS BOOT_COUNT
FROM
SABOOTTIMES
WHERE
STARTTIME >= GETUTCDATE() - 90
GROUP BY
WGUID
Proactive Hardware Monitoring Role
This DEX Pack requires you to assign the SF_Proactive Hardware Monitoring Role to the relevant Configurations:
-
Navigate to Configure > Configurations
-
Click the padlock icon in the upper-right to enable editing
-
Use the drop-down at the top to select a relevant Configuration, or create a new Configuration
-
Assign SF_Proactive Hardware Monitoring Role to the Configuration by dragging it from Available Roles to Assigned Roles
-
Click Save Changes at the top-right
-
Repeat this process for any other relevant Configurations
On This Page